home *** CD-ROM | disk | FTP | other *** search
/ By Popular Request 2.0 / By Popular Request 2.0 (Arsenal Computer).ISO / amiga_4 / mm_1_0.lha / MM / Rexx / MM_WriteLog.rexx < prev   
OS/2 REXX Batch file  |  1994-12-13  |  185b  |  16 lines

  1. /*
  2. ** This script shows how to use the
  3. ** MM_WriteLog command.
  4. */
  5.  
  6. address 'MAILMANAGER'
  7.  
  8. num = 10
  9. string = "I have Imported "num" messages"
  10.  
  11. say string
  12.  
  13. MM_WriteLog 'string' 3
  14.  
  15. say RC
  16.